home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000122_fdc@watsun.cc.columbia.edu_Thu May 10 14:28:28 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  73 lines

  1. Article: 12412 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: How to set Linefeed display as CR/LF?
  6. Date: 10 May 2001 18:28:18 GMT
  7. Organization: Columbia University
  8. Lines: 56
  9. Message-ID: <9demk2$bnu$1@newsmaster.cc.columbia.edu>
  10. References: <y9AK6.175$Dd5.113922@ruti.visi.com> <9dej5o$9bs$1@newsmaster.cc.columbia.edu> <oIAK6.181$Dd5.116707@ruti.visi.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 989519298 12030 128.59.39.2 (10 May 2001 18:28:18 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 10 May 2001 18:28:18 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12412
  16.  
  17. In article <oIAK6.181$Dd5.116707@ruti.visi.com>,
  18. Grant Edwards <grante@visi.com> wrote:
  19. : In article <9dej5o$9bs$1@newsmaster.cc.columbia.edu>, Frank da Cruz wrote:
  20. : >: I found the option that can be used to display a CR as CR/LF
  21. : >: for systems that terminate lines with CR, but what about
  22. : >: systems that terminate lines with LF? How do I get LF displayed
  23. : >: as CR/LF?
  24. : >
  25. : >Are you describing a real situation or is this an academic
  26. : >question?
  27. : It's a "real" situation in that I'm using Kermit as part of a
  28. : setup to observe a stream of test-data I'm sending through a
  29. : prototype of a new product.
  30. : >If it's a real question, what host is sending bare linefeeds to
  31. : >a terminal?
  32. : It's a TCP<-->serial gateway, sort of like a dumb terminal server.
  33. : >And which Kermit program are you using, 
  34. : C-Kermit 7.0.197, 8 Feb 2000, for Linux
  35. : >to emulate which kind of terminal,
  36. : ckermit is running in an xterm or an rxvt terminal window under X11.
  37. : >on what kind of connection?
  38. : 9600 baud serial connection via Comtrol RocketPort 32-port
  39. : serial board under Linux.
  40. : I'm using netcat to shove Unix textfiles into the terminal
  41. : server which acts as a transparent conduit between a serial
  42. : port and a TCP port.
  43. :
  44. But in real life, the UNIX terminal driver supplies the CR, so this
  45. isn't really an accurate simulation.  Maybe you could pipe netcat
  46. through something that converts LF to CRLF, if netcat is pipeable.
  47. You could even pipe it thru tr '\012' '015' and then use TERMINAL
  48. CR-DISPLAY CRLF (assuming your files don't already contain bare CRs).
  49.  
  50. : I connect the terminal-server's serial
  51. : port to a serial port on a Unix machine and use Kermit to
  52. : display the data stream.  It would be convenient to have the
  53. : linefeeds in the text files displayed as CR/LF, but it's just a
  54. : convenience. I can add CR's to the files for the tests I'm
  55. : running.
  56. Nobody has ever asked for this before, so C-Kermit doesn't have it.
  57. Maybe I can add it to the next release after C-Kermit 7.1 Beta.01
  58. is announced, hopefully within a few days, but I'm not going to mess
  59. with Beta.01 since as of today it's frozen.
  60.  
  61. - Frank
  62.